Nodes > Control Flow > While
Continues to execute the Body port as long as condition is true. Once condition is false, the loop ends and the Then port is executed.
Inputs
Name | Type | Description |
---|---|---|
condition | bool | While true, looping will continue |
Outputs
Name | Type | Description |
---|---|---|
Body | Execution | Continues to execute while condition is true |
Then | Execution | Executes after all loops are finished, once condition is false |
Was this page helpful?